html,
body {
    position: relative;
    height: 100%;
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1400px;
    }
}

#web-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.nav-container {
    width: 80%;
    margin: auto;
    background: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.minified {
    width: 100%;
    background: rgba(255, 255, 255, 1);
}

#web-nav .navbar-brand {
    padding: 0;
    margin: 0;
    margin-left: 20px;
}

#web-nav .nav-center {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
}

#web-nav a.navbar-brand img {
    width: auto;
    transition: 0.3s;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.8);
}

#web-nav .nav-center>div.nav-bar-r {
    display: flex;
    align-items: center;
	justify-content: flex-end;
}

.nav-lang {
    margin-left: 25px;
}

.button_menu_web {
    position: relative;
    width: 100px;
    height: 100px;
    background: #ae1812;
    cursor: pointer;
    color: #ffffff;
    padding: 36px 15px;
    text-align: center;
}

.button_menu_web i.fa-globe {
    font-size: 28px;
}

.button_menu_web i.fa-angle-down {
    font-size: 18px;
    margin-left: 5px;
}

.button_menu_web.active i.fa-globe,
.button_menu_web:hover i.fa-globe {
    webkit-animation: rotate360 10s linear infinite;
    animation: rotate360 10s linear infinite;
}

.button_menu {
    display: none;
}

.navbar-list {
    margin-bottom: 0;
    display: flex;
    /*width: 50%;*/
    min-width: 585px;
    justify-content: space-between;
}

.navbar-list>li {
    margin-top: 0px;
    list-style: none;
    height: 100px;
}

.navbar-list>li>a {
    position: relative;
}

.navbar-list>li>a:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border: 3px solid #ae1812;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 0;
    opacity: 0;
}

.navbar-list>li:hover>a:before {
    opacity: 1;
}

.navbar-list>li.dropdown_li2 {
    position: relative;
}

.navbar-list>li>a {
    display: block;
    padding: 20px 22px;
    font-size: 16px;
    color: #333333;
    height: 100%;
    line-height: 60px;
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    text-align: center;
}

.hidden_nav {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffff;
    z-index: 9999999;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #EAEAEA;
}

.dropdown_hidden {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -101px;
    width: 200px;
    padding: 10px 0;
    background: #fff;
    z-index: 9999999;
    transform: translateY(30px);
    opacity: 0;
    transition: all .4s;
    border: 1px solid #EAEAEA;
}

.dropdown_hidden ul:before {
    position: absolute;
    content: '';
    left: 50%;
    top: -8px;
    margin-left: -10px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 8px solid #fff;
}

.dropdown_hidden li {
    line-height: 25px;
}

.dropdown_hidden li a {
    display: block;
    padding: 8px 10px;
    color: #333;
}

.dropdown_hidden li a:hover {
    background: #b90101;
    color: #fff;
}

.navbar-list>li:hover .dropdown_hidden {
    transform: translateY(0px);
    opacity: 1;
    transition: all .4s;
}

.navbar-list>li:hover a {
    text-decoration: none;
}

#web-nav li.dropdown_li:hover .hidden_nav {
    display: block;
}

#web-nav li.dropdown_li .hidden_nav {
    padding-top: 30px;
}

#web-nav li.dropdown_li .hidden_nav dt a {
    opacity: 1;
}

#web-nav li.dropdown_li .hidden_nav dd {
    margin-bottom: 0;
}

#web-nav li.dropdown_li .hidden_nav a {
    display: block;
    color: #333333;
    opacity: 0.7;
    line-height: 24px;
    font-size: 14px;
}

#web-nav li.dropdown_li .hidden_nav a:hover {
    color: #ae1812;
    opacity: 1;
}

.hidden_nav .hidden_nav>a {
    display: block;
    width: 100%;
    padding: 0 15px;
    line-height: 45px;
    background: #f2f2f2;
    font-weight: bold;
    color: #ec6200;
}

.hidden_nav>div a:hover,
.hidden_nav>a:hover {
    color: #ec6200;
    text-decoration: none;
}

.hidden_nav>a span {
    float: right;
    color: #444;
    height: 45px;
    line-height: 45px;
}

.hidden_nav>div {
    padding: 0px 10px;
}

.hidden_nav>div dl {
    float: left;
    width: 25%;
    padding: 10px;
}

.hidden_nav>div dt a {
    display: block;
    font-weight: bold;
    line-height: 35px;
    margin-bottom: 5px;
    font-size: 1rem;
}

.hidden_nav>div a {
    color: #333;
    text-decoration: none;
}

.hidden_nav>div dd a {
    display: block;
    color: #444;
    transition: all 0.2s;
}

.hidden_nav>div dd:hover a {
    text-indent: 5px;
    transition: all 0.2s;
}

nav .dropdown_li.cur .hidden_nav {
    display: block;
}

.navbar-list .row {
    width: 100%;
}

.navbar-list .row ul li {
    margin: 0 1%;
    width: 23%;
    float: left;
    position: relative;
    list-style: none;
}

.navbar-list .row ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-bottom: 0.01rem solid #999;
    border-right: 0.01rem solid #999;
    transform: rotate(-45deg);
    position: absolute;
    left: 0.0rem;
    top: 50%;
    margin-top: -5px;
}

.navbar-list .row ul li a {
    display: flex;
    font-size: 14px;
    height: 60px;
    line-height: 20px;
    text-align: left;
    color: #666666;
    padding-left: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
    padding-left: 20px;
    align-items: center;
}

.navbar-list .row ul li:hover:before {
    border-bottom: 0.01rem solid #b90101;
    border-right: 0.01rem solid #b90101;
}

.navbar-list .row ul li a:hover,
.navbar-list .row ul li a:focus {
    color: #001f7d;
    border-bottom: 1px solid #b90101;
    background: none;
}

.navbar-list .row ul li {
    padding: 10px 0;
}

.menu_text {
    color: #666666;
    border-left: 1px solid #e5e5e5;
}

.menu_text div {
    color: #666666;
    line-height: 190%;
    width: 80%;
    margin: auto;
    font-size: 12px;
}

.nav-lang-list {
    padding: 60px 15px;
}

.nav-lang-title {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.nav-lang-title h1 {
    font-size: 18px;
    font-weight: bolder;
    text-transform: uppercase;
}

.nav-lang-title h1 i {
    margin-right: 15px;
    font-size: 20px;
    color: #ae1812;
}

.nav-lang-ul ul li {
    display: inline-block;
    list-style: none;
    margin-right: 30px;
    padding: 15px 0;
}

.nav-lang-ul ul li a img {
    margin-right: 10px;
}

.nav-lang-ul ul li a:hover {
    color: #ae1812;
}

#ph-nav {
    display: none;
}

#ph-nav .lang {
    display: flex;
}

#ph-nav .lang .dropdown-menu {
    left: -100%
}

#ph-nav.navbar-light .navbar-toggler {
    outline: 0;
    border: none;
}

#ph-nav.navbar-light .navbar-nav .nav-link {
    color: #fff;
    border-bottom: 1px dashed #eaeaea;
}

#ph-nav .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #b90101;
}

.navbar-collapse .dropdown.show a.nav-link {
    border: none;
    background: rgba(0, 0, 0, 0.2);
}

.navbar-collapse .dropdown-menu {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
}

.navbar-collapse .dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.navbar-collapse .dropdown-menu a:hover {
    background: none;
    color: rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 0.2);
}

.Language_dr {
    display: flex;
    align-items: center;
}

.Language_dr .nav-link {
    font-size: 18px;
}

.Language_dr .nav-link:hover {
    color: #ae1812;
}

.lang_cn i {
    margin-right: 5px;
}

#banner {
    position: relative;
}

.banner-nav {
    position: absolute;
    left: 12%;
    bottom: 13%;
    z-index: 999;
}

.banner-nav ul {
    position: relative;
}

.banner-nav ul:after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 8px;
    right: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.33);
}

.banner-nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 100px;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.banner-nav ul li:last-child {
    margin-right: 0;
}

.banner-nav ul li a {
    color: #ffffff;
    text-align: center;
}

.banner-nav ul li a span {
    display: block;
    color: #ffffff;
    font-family: "Impact";
    font-size: 33px;
    margin-bottom: 20px;
}

.banner-nav ul li a .banner-nav-point {
    display: block;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    margin: auto;
    position: relative;
}

.banner-nav ul li a .banner-nav-point:before {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    bottom: -10px;
    right: -10px;
    border: 1px solid #ae1812;
    border-radius: 50%;
    display: none;
}

.banner-nav ul li.active a span {
    color: #ae1812;
}

.banner-nav ul li.active a .banner-nav-point {
    background: #ae1812;
}

.banner-nav ul li.active a .banner-nav-point:before {
    display: block;
}

#banner .swiper-slide {
    position: relative;
}

.container-title {
    font-size: 24px;
    text-align: center;
    color: #111111;
    margin-bottom: 2rem;
}

.container-title-white * {
    color: #ffffff !important;
}

.container-title-shadow {
    text-shadow: 0px 0px 80px #19266cab;
}

.container-title h1 {
    font-family: "HumnstBT";
    font-size: 60px;
}

.container-title p {
    max-width: 1000px;
    text-align: center;
    margin: auto;
    font-size: 16px;
    color: #333;
}

.index-pro-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.index-pro-serise {
    display: flex;
    justify-content: space-between;
    background: #f5f5f5;
    height: 68px;
    border-bottom: 2px solid #1c2c82;
}

.index-pro-serise-btn {
    width: 33px;
    height: 68px;
    line-height: 68px;
    text-align: center;
    font-size: 24px;
    background: #eeeeee;
    cursor: pointer;
    border-bottom: 2px solid #1c2c82;
}

.index-pro-serise-btn:hover {
    color: #ae1812;
}

.index-pro-serise-swiper {
    overflow: hidden;
    width: calc(100% - 66px);
    height: 80px;
}

.index-pro-serise-item {
    text-align: center;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-bottom: 2px solid #1c2c82;
    background: #f5f5f5;
}

.index-pro-serise-item a {
    border-right: 1px solid #cbcbcb;
    display: block;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
}

.index-pro-serise-item a:hover {
    color: #ae1812;
}

.swiper-slide:last-child .index-pro-serise-item a {
    border-right: none;
}

.index-pro-serise-swiper .swiper-slide {
    position: relative;
}

.index-pro-serise-swiper .swiper-slide:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid #1c2c82;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    opacity: 0;
}

.index-pro-serise-swiper .swiper-slide-thumb-active:after {
    opacity: 1;
}

.index-pro-serise-list-swiper {
    overflow: hidden;
}

.index-pro-serise-list {
    margin-top: 36px;
}

.pro-list-swiper{
	overflow:hidden;
}

.index-pro-item a {
    text-align: center;
}

.index-pro-item a {
    color: #333333;
}

.index-pro-item a:hover {
    text-decoration: none;
    color: #ae1812;
}

.index-pro-name {
    padding: 15px;
    font-size: 18px;
}

.swiper-pagination {
    position: relative;
    margin-top: 36px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cccccc;
    opacity: 1;
    position: relative;
    margin: 10px!important;
}

.swiper-pagination .swiper-pagination-bullet-active:after {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    top: -5px;
    bottom: -5px;
    display: block;
    border-radius: 50%;
    border: 2px solid #ae1812;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: #ae1812;
}

.index-pro-serise-list-swiper .swiper-slide {
    background: #ffffff;
}

#index-app {
    background: #1c2c82;
    overflow: hidden;
}

.index-app-container {
    padding-top: 4rem;
}

.index-app-item a {
    display: block;
    position: relative;
    overflow: hidden;
}

.index-app-item a:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.36);
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}

.index-app-item a:hover:before {
    opacity: 1;
}

.index-app-item a .app-item-name {
    position: absolute;
    color: #ffffff;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    padding: 50px;
    border-left: 10px solid #ae1812;
    -webkit-transform: translate(0, 65px);
    transform: translate(0, 65px);
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: transform .5s, opacity .5s;
    transition: transform .5s, opacity .5s, -webkit-transform .5s;
    will-change: transform;
}

.index-app-item a .app-item-name h2 {
    font-weight: normal;
}

.index-app-item a .app-item-name span {
    font-size: 20px;
}

.index-app-item a .app-item-name .app-item-more {
    font-size: 12px;
    border: 1px solid #ffffff;
    width: 120px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 30px;
    opacity: 0;
    -webkit-transform: translate(0, 250px);
    transform: translate(0, 250px);
    -webkit-transition: opacity .7s, -webkit-transform .7s;
    transition: transform .7s, opacity .7s;
    transition: transform .7s, opacity .7s, -webkit-transform .7s;
    will-change: transform;
}

.index-app-item a:hover .app-item-name {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.index-app-item a:hover .app-item-name .app-item-more {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

.index-app-swiper .index-app-scrollbar {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    width: 100%;
    left: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 50%, transparent 50%);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    margin-top: 64px;
    margin-bottom: 64px;
}

.index-app-swiper .swiper-scrollbar-drag {
    height: 40px !important;
    background-color: #ae1812 !important;
    background-image: url(../images/scrollbar-toggler-ico.png);
    background-repeat: no-repeat;
    background-position: center center;
    top: -20px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
}

.index-app-swiper .swiper-scrollbar-drag::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid #fff;
    opacity: .3;
    transition: all 0.3s;
}

.index-app-swiper .swiper-scrollbar-drag:hover::after {
    opacity: .7;
}

#index-about {
    background: url(../images/index-about-bg.jpg) center center no-repeat #1c2c82;
    background-size: cover;
}

.index-about-container {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.index-about-right {
    float: right;
    width: 45%;
    color: #ffffff;
}

.index-about-img {
    display: none;
    margin-top: 30px;
}

.index-about-title {
    margin-bottom: 30px;
}

.index-about-title h1 {
    font-weight: bolder;
    margin-top: 26px;
}

.index-about-p {
    font-size: 16px;
    line-height: 30px;
}

.index-about-more {
    margin-top: 20px;
}

.index-about-more a {
    color: #ffffff;
}

.index-about-more a:hover {
    text-decoration: none;
}

.more-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 3px solid #ae1812;
    border-radius: 50%;
    top: 50%;
    margin-right: 15px;
}

.index-about-more a:hover .more-icon {
    margin-right: 25px;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.index-news-swiper {
    overflow: hidden;
}

.index-news-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.news-item a {
    display: block;
}

.news-item a:hover {
    text-decoration: none;
}

.news-item a .news-img {
    width: 100%;
}

.news-item a .news-time {
    font-size: 24px;
    color: #727272;
    margin-top: 20px;
    position: relative;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.news-item a .news-time:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border: 3px solid #ae1812;
    border-radius: 50%;
    top: 50%;
    margin-top: -6px;
    margin-right: 15px;
    opacity: 0;
    left: 0;
}

.news-item a:hover .news-time {
    padding-left: 30px;
}

.news-item a:hover .news-time:before {
    opacity: 1;
}

.news-item a .news-name {
    margin-top: 15px;
    font-size: 20px;
    color: #111111;
}

#index-contact {
    background: url(../images/index-contact-bg.jpg) center center no-repeat;
    background-size: cover;
}

.index-contact-container {
    padding-top: 4rem;
}

.index-contact-container {
    padding-bottom: 4rem;
}

.index-contact-title {
    float: left;
    width: 50%;
    text-align: left;
}

.index-contact-right {
    float: right;
    width: 45%;
    color: #ffffff;
    padding-top: 2rem;
}

.index-contact-title h1 {
    font-size: 40px;
}

#foot {
    background: #111111;
    color: #ffffff;
}

#foot a {
    color: #ffffff;
}

#foot a:hover {
    text-decoration: none;
    color: #ae1812;
}

.foot-container {
    padding-top: 6rem;
    padding-bottom: 6rem;
    display: flex;
    justify-content: space-between;
}

.foot-nav {
    width: 60%;
}

.foot-nav-about {
    float: left;
    width: 30%;
}

.foot-nav-about ul li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 18px;
}

.foot-nav-pro {
    float: left;
    width: 70%;
}

.nav-pro-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.foot-nav-pro ul li {
    list-style: none;
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    width: 45%;
}

.foot-nav-about ul li a,
.foot-nav-pro ul li a {
    display: block;
    position: relative;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.foot-nav-about ul li a:hover,
.foot-nav-pro ul li a:hover {
    padding-left: 20px;
    color: #ffffff!important;
}

.foot-nav-about ul li a:before,
.foot-nav-pro ul li a:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border: 3px solid #ae1812;
    border-radius: 50%;
    top: 50%;
    margin-top: -6px;
    margin-right: 15px;
    opacity: 0;
    left: 0;
}

.foot-nav-about ul li a:hover:before,
.foot-nav-pro ul li a:hover:before {
    opacity: 1;
}

.foot-link-lx {}

.foot-link-lx a {
    display: inline-block;
    margin-left: 20px;
    width: 40px;
    height: 40px;
    color: #111111!important;
    background: #FFFFFF;
    text-align: center;
    line-height: 40px;
    font-size: 22px;
    transition: all 0.3s;
}

.foot-link-lx a:hover {
    background: #ae1812;
    color: #fff!important;
    transition: all 0.3s;
    transform: scale(1.1);
}

.foot-copyright-container {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #3c3c3c;
}

#banner-img {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 80vh;
    color: #fff;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    align-items: center;
}

#banner-img.flex-end {
    align-items: flex-end;
}

#banner-img:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(9, 60, 113, 0) 0%, rgba(9, 60, 113, 0) 60%, rgb(21 34 104) 100%);
}

.banner-img-container {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.container-con {
    padding-top: 4rem;
    padding-bottom: 8rem;
}

.container-left {
    float: left;
    width: 45%;
}

.container-right {
    float: right;
    width: 50%;
}

.feedback-form .form-control {
    font-size: 14px;
}

.feedback-form .form-control-input {
    position: relative;
}

.feedback-form .form-control-input i {
    position: absolute;
    left: 15px;
    top: 14px;
    color: #cccccc;
    font-size: 22px;
}

.feedback-form .form-control-input .form-control,
.feedback-form .form-textarea {
    width: 100%;
    padding: 6px 6px 6px 45px;
    height: 46px;
    line-height: 26px;
    font-size: 14px;
    color: #333333;
    background-repeat: no-repeat;
    background-position: .5rem center;
    background-size: .5rem;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    transition: all .3s;
}

.feedback-form .form-textarea {
    height: auto;
    padding-left: 15px;
}

.feedback-form .form-control-input .form-control:focus::-webkit-input-placeholder,
.feedback-form .form-control-input .form-textarea:focus::-webkit-input-placeholder {
    /* WebKit browsers 适配谷歌 */
    color: #333;
}

.feedback-form .form-control-input .form-control:focus:-moz-placeholder,
.feedback-form .form-control-input .form-textarea:focus:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 适配火狐 */
    color: #333;
}

.feedback-form .form-control-input .form-control:focus::-moz-placeholder,
.feedback-form .form-control-input .form-textarea:focus::-moz-placeholder {
    /* Mozilla Firefox 19+ 适配火狐 */
    color: #333;
}

.feedback-form .form-control-input .form-control:focus:-ms-input-placeholder,
.feedback-form .form-control-input .form-textarea:focus:-ms-input-placeholder {
    /* Internet Explorer 10+  适配ie*/
    color: #333;
}

.feedback-submit {
    background: #001f7d;
    color: #ffffff;
    border-radius: 0;
    width: 260px;
    height: 46px;
    float: left;
}

.feedback-submit:hover {
    color: #ffffff;
    background-color: #ae1812;
}

.map_box {
    position: relative;
    min-height: 500px;
}

.container-con {
    overflow: hidden;
}

.news-con,
.app-con {
    margin-left: -15px;
    margin-right: -15px;
}

.news-items,
.app-items {
    float: left;
    width: 33.3%;
    padding: 15px;
}

.news-con-title {
    text-align: center;
    color: #111111;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    font-weight: bolder;
}

.news-share {
    border: #c5c5c5 1px dashed;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.news-conner {
    margin-top: 15px;
}

.pro-serise {
    float: left;
    width: 300px;
}

.pro-list {
    float: right;
    width: calc(100% - 360px);
    overflow: hidden;
}

.pro-list-title {
    padding: 10px 0;
    margin-bottom: 15px;
}

.pro-list-title h2:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    z-index: 0;
    width: 2em;
    height: 0.133em;
    margin-left: 0.5em;
    background-color: #b03718;
}

.pro-serise-dropdown .dropdown-toggle {
    width: 100%;
    display: block;
    padding: 20px 15px;
    text-align: left;
    background: #1c2c82;
    font-size: 20px;
    border-radius: 0px;
    font-weight: bold;
}

.pro-serise-dropdown .dropdown-toggle i {
    margin-right: 15px;
    font-size: 24px;
}

.pro-serise-dropdown .dropdown-toggle::after {
    display: none;
}

.pro-serise-dropdown .dropdown-menu {
    display: block;
    position: relative;
    width: 100%;
}

.pro-serise-dropdown .dropdown-menu.show {
    display: block;
}

.pro-serise-dropdown .dropdown-menu .dropdown-item {
    border-bottom: 1px solid #eeeeee;
    padding: 10px 15px;
}

.pro-serise-dropdown .dropdown-menu .dropdown-item:hover {
    color: #ae1812;
    text-indent: 5px;
    transition: all 0.2s;
}

.pro-serise-dropdown .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.pro-serise-dropdown .dropdown-menu .dropdown-item.active, .pro-serise-dropdown .dropdown-menu .dropdown-item:active {
    background-color: #ae1812;
	color: #ffffff;
}

.pro-list-con {
    margin-left: -30px;
    margin-right: -30px;
}

.pro-list-items {
    float: left;
    width: 33.3%;
    padding: 0 15px 30px;
}

.pro-list-item {
    text-align: center;
}

.pro-list-item a {
    display: block;
    position: relative;
}

.pro-list-item a:hover {
    text-decoration: none;
    color: #ffffff;
}

.pro-list-item .pro-list-name {
    text-align: center;
    padding: 20px 15px 40px;
    font-size: 16px;
    background: #eeeeee;
}

.pro-list-item a:hover .pro-list-name {
    background: #1c2c82;
}

.pro-list-item .pro-name-en {
    text-transform: uppercase;
}

.pro-list-item .pro-list-more {
    display: block;
    margin: auto;
    margin-top: -30px;
    text-align: center;
    border-radius: 50%;
    line-height: 40px;
    background: #ffffff;
    height: 50px;
    width: 50px;
    font-size: 12px;
    color: #ccc;
    border: 5px solid #eeeeee;
    transition-duration: .3s;
    position: absolute;
    left: 50%;
    margin-left: -25px;
}

.pro-list-item a:hover .pro-list-more {
    color: #fff;
    border-color: #ffffff;
    background: #ae1812;
    margin-top: -36px;
}

.pro-view-container .pro-view-left {
    width: 48%;
    float: left;
}

.pro-view-container .pro-view-right {
    width: 48%;
    float: right;
}

.pro-view-container .pro-img {
    text-align: center;
}

.pro-view-container .pro-title h1 {
    font-size: 1.625rem;
    font-weight: bolder;
    color: #111111;
    margin-bottom: 0;
}

.pro-view-container .pro-title h4 {
    text-transform: uppercase;
}

.pro-view-container .pro-title {
    font-size: 18px;
    position: relative;
    padding-right: 66px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 20px;
}

.pro-view-tages {
    position: absolute;
    right: 0;
    color: #333333;
    font-size: 14px;
    top: 10%;
}

.pro-view-tages ul li {
    list-style: none;
    display: inline-block;
}

.pro-view-container .pro-view-jj {
    min-height: 200px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #cccccc;
}

.pro-view-container .pro-back {}

.pro-view-container .pro-back a {
    display: inline-block;
    color: #111111;
    padding: 6px 15px;
    border: 1px solid #111111;
    margin-right: 10px;
    min-width: 140px;
    text-align: center;
}

.pro-view-container .pro-back a.btn-contact {
    background: #ae1812;
    border-color: #ae1812;
    color: #ffffff;
}

.pro-view-container .pro-back a.btn-back i {
    margin-right: 10px;
}

.pro-view-container .pro-back a:hover {
    background: #ae1812;
    border-color: #ae1812;
    color: #ffffff;
    text-decoration: none;
}

.pro-view-container .pro-back a.btn-contact:hover {
    background: #ae1812;
    border-color: #ae1812;
}

.pro-view-img {
    max-width: 768px;
    margin: auto;
    position: relative;
}

.gallery-top {
    border: 1px solid #cdcdcd;
}

.gallery-top .swiper-slide {
    text-align: center;
    background: #ffffff;
}

.gallery-thumbs {
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    opacity: 0.4;
    border: 1px solid #cdcdcd;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #ae1812;
}

.pro-view-btns {
    position: absolute;
    top: 36%;
    opacity: 0;
    width: 100%;
    left: 0;
}

.pro-view-btns .swiper-btn {
    position: absolute;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #ae1812;
    color: #ffffff;
    font-size: 26px;
    border-radius: 50%;
}

.pro-view-img:hover .swiper-btns {
    opacity: 1;
}

.pro-view-img:hover .swiper-btns .swiper-btn {
    z-index: 10;
}

.pro-view-img .swiper-btns .swiper-btn.swiper-button-disabled,
.pro-view-img:hover .swiper-btns .swiper-btn.swiper-button-disabled {
    opacity: 0;
    cursor: unset;
}

.pro-view-img .swiper-btn.swiper-but-next {
    left: 3%;
}

.pro-view-img .swiper-btn.swiper-but-prev {
    right: 3%;
}

.pro-view-img .swiper-btn:hover {
    opacity: 1;
}

.pro-view-img .swiper-btn:focus {
    outline: none;
}

.product-view-detail {
    margin-top: 60px;
}

.product-view-detail-con {
    border-top: 1px solid #eeeeee;
    padding: 15px;
}

.clear1 {
    display: block;
}

.clear2 {
    display: none;
}

@-webkit-keyframes rotate360 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes rotate360 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@media (max-width:1024px) {
    #web-nav {
        display: none;
    }
    #ph-nav {
        display: block;
    }
    .banner-nav ul li {
        margin-right: 30px;
    }
    .banner-nav ul li a .banner-nav-point {
        width: 8px;
        height: 8px;
    }
    .banner-nav ul li a .banner-nav-point:before {
        left: -4px;
        top: -4px;
        bottom: -4px;
        right: -4px;
    }
    .banner-nav ul li a span {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .banner-nav ul:after {
        left: 8px;
        right: 8px;
        bottom: 4px;
    }
    #index-about {
        background: #1c2c82;
    }
    .index-about-container {
        padding-top: 2rem;
    }
    .index-about-right {
        width: 100%;
    }
    .index-about-img {
        display: block;
    }
    .index-contact-title {
        float: none;
        width: 100%;
    }
    .index-contact-right {
        float: none;
        width: 100%;
    }
    .foot-container {
        flex-direction: column;
    }
    .foot-nav {
        width: 100%;
    }
    .foot-link-lx {
        margin-top: 15px;
    }
    .foot-link-lx a {
        margin-left: 0px;
        margin-right: 20px;
    }
    .foot-nav-about {
        float: none;
        width: 100%;
    }
    .foot-nav-pro {
        float: none;
        width: 100%;
        margin-top: 15px;
    }
    .foot-nav-about ul li,
    .foot-nav-pro ul li {
        display: inline-block;
        margin-right: 10px;
        width: auto;
    }
    .container-left {
        float: none;
        width: 100%;
    }
    .container-right {
        float: none;
        width: 100%;
        margin-bottom: 3rem;
    }
    .news-items,
    .app-items {
        width: 50%;
    }
    .pro-serise-dropdown .dropdown-menu {
        display: none;
    }
    .pro-serise-dropdown .dropdown-toggle {
        text-align: center;
    }
    .pro-serise-dropdown .dropdown-toggle::after {
        display: inline-block;
    }
    .pro-list-items {
        width: 50%;
    }
    .pro-serise {
        float: none;
        width: 100%;
    }
    .pro-list {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .pro-view-container .pro-view-left {
        width: 100%;
        float: none;
    }
    .pro-view-container .pro-view-right {
        width: 100%;
        float: none;
        margin-top: 2rem;
    }
    .clear1 {
        display: none;
    }
    .clear2 {
        display: none;
    }
}

@media (max-width: 680px) {
    .news-items,
    .app-items {
        width: 100%;
        float: none;
    }
    .pro-list-items {
        width: 100%;
        float: none;
    }
}